home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
utilit~1
/
initbin.zoo
/
init-bin
/
etc
/
login.csh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1992-11-03
|
373 b
|
23 lines
#!/bin/tcsh
# csh .login
#
# Files you make look like rw-r--r--
umask 022
set defterm="vt100"
if (! ${?term}) set term=dumb
if ($term == "dumb") then
if ($TTY != "console") then
echo -n "TERM = ("$defterm") "
set term=$<
if ( $term =~ "" ) set term=$defterm
setenv TERM $term
else
set term=st52
endif
else
echo term=$term
endif